home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / INTERNET / SITES / LITTLE / P3SRC.ZIP / ATARI / PARSTXTR.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-07  |  2.6 KB  |  67 lines

  1. /****************************************************************************
  2. *                   parstxtr.h
  3. *
  4. *  This header file is included by all all language parsing C modules in
  5. *  POV-Ray.
  6. *
  7. *  from Persistence of Vision(tm) Ray Tracer
  8. *  Copyright 1996 Persistence of Vision Team
  9. *---------------------------------------------------------------------------
  10. *  NOTICE: This source code file is provided so that users may experiment
  11. *  with enhancements to POV-Ray and to port the software to platforms other
  12. *  than those supported by the POV-Ray Team.  There are strict rules under
  13. *  which you are permitted to use this file.  The rules are in the file
  14. *  named POVLEGAL.DOC which should be distributed with this file. If
  15. *  POVLEGAL.DOC is not available or for more info please contact the POV-Ray
  16. *  Team Coordinator by leaving a message in CompuServe's Graphics Developer's
  17. *  Forum.  The latest version of POV-Ray may be found there as well.
  18. *
  19. * This program is based on the popular DKB raytracer version 2.12.
  20. * DKBTrace was originally written by David K. Buck.
  21. * DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
  22. *
  23. *****************************************************************************/
  24.  
  25. #ifndef PARSTXTR_H
  26. #define PARSTXTR_H
  27.  
  28. #include "atmosph.h"
  29.  
  30. /*****************************************************************************
  31. * Global preprocessor defines
  32. ******************************************************************************/
  33.  
  34.  
  35.  
  36. /*****************************************************************************
  37. * Global typedefs
  38. ******************************************************************************/
  39.  
  40.  
  41.  
  42. /*****************************************************************************
  43. * Global variables
  44. ******************************************************************************/
  45.  
  46. extern short Have_Vector;
  47. extern TEXTURE *Default_Texture;
  48.  
  49.  
  50.  
  51. /*****************************************************************************
  52. * Global functions
  53. ******************************************************************************/
  54.  
  55. TEXTURE *Parse_Texture PARAMS((void));
  56. void Parse_Pigment PARAMS((PIGMENT **Pigment_Ptr));
  57. void Parse_Tnormal PARAMS((TNORMAL **Tnormal_Ptr));
  58. void Parse_Finish PARAMS((FINISH **Finish_Ptr));
  59. void Parse_Halo PARAMS((HALO **Halo_Ptr));
  60. ATMOSPHERE *Parse_Atmosphere PARAMS((void));
  61. FOG *Parse_Fog PARAMS((void));
  62. RAINBOW *Parse_Rainbow PARAMS((void));                      
  63. SKYSPHERE *Parse_Skysphere PARAMS((void));
  64. IMAGE *Parse_Image PARAMS((int Legal));
  65.  
  66. #endif
  67.